@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Roboto", sans-serif;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 2rem 0;
}

.build {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 1rem 0 2rem 0;
}

.build p {
  margin: 0.5rem;
  font-size: 1.5rem;
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact p {
  margin: 0.5rem;
}

.contact p a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}

/* Media Qs */
@media (max-width: 1068px) {
}

@media (max-width: 820px) {
  .logo img {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .logo img {
    width: 300px;
  }

  .contact {
    flex-direction: column;
  }
}

@media (max-width: 320px) {
}
